import React, { PropsWithChildren } from 'react'; export type BillingDateContextProps = { lastCompleteBillingDate: string; }; export declare const BillingDateContext: React.Context; export declare const dateRegex: RegExp; export declare const BillingDateProvider: ({ children }: PropsWithChildren<{}>) => React.JSX.Element | null; export declare function useLastCompleteBillingDate(): string;