export interface QuoteSummaryCardProps { title: string; pipelineName?: string | null; stageName?: string | null; status: string; valueAmountCents?: number | null; valueCurrency?: string | null; expectedCloseDate?: string | null; } export declare function QuoteSummaryCard({ title, pipelineName, stageName, status, valueAmountCents, valueCurrency, expectedCloseDate, }: QuoteSummaryCardProps): import("react").JSX.Element;