import { StripeElementsActions } from './stripe-elements.actions'; export interface StripeFormContainerState { loaded: boolean; error: Error | undefined; } export declare const initialState: StripeFormContainerState; export declare function stripeElementsReducer(state: StripeFormContainerState, action: StripeElementsActions): StripeFormContainerState;