import { StripeElementStyleInterface, } from './stripe-element-style.interface'; export interface StripeStyleInterface { classes?: { base?: string; empty?: string; focus?: string; invalid?: string; }; placeholder?: string; style?: { base?: StripeElementStyleInterface; empty?: StripeElementStyleInterface; focus?: StripeElementStyleInterface; invalid?: StripeElementStyleInterface; }; }