interface IAddedCard { title: string; date: string; image?: string; onPress?: () => void; disabled?: boolean; } export declare const AddedCard: ({ disabled, image, date, title, onPress, }: IAddedCard) => JSX.Element; export {};