import React, { FC } from 'react'; import { IAction } from '../../types'; interface ICardProps { children: React.ReactNode; customHeader?: React.ReactNode; title?: string; actionLabel?: string; handleClick?: () => void; handleBack?: () => void; height?: string; options?: IAction[]; theme?: any; iconColor?: string; iconHoverColor?: string; shadow?: boolean; headerDivader?: boolean; actionDisabled?: boolean; } export declare const Card: FC; export {};