export interface IOrderCard { title: string; status: 'new' | 'inProcess' | 'finalized'; subtitle: string; footer?: string; rightText?: string; disabled?: boolean; onPress?: () => void; tagDescription?: string; } export declare const OrderCard: ({ title, status, subtitle, footer, rightText, disabled, onPress, tagDescription, }: IOrderCard) => JSX.Element;