import { ReactNode } from 'react'; export interface IEmptyProps { /** * allows css to be passed to the component */ className?: string; /** * call to action component like a button or group of buttons */ cta?: ReactNode; /** * Example icon * this should be a consistent icon for quick scanning */ icon?: ReactNode; /** * more context if for the user needed */ text?: ReactNode; /** * main context */ title?: ReactNode; /** * optional choice of border style */ variant?: 'default' | 'solid'; } //# sourceMappingURL=types.d.ts.map