export type SpreadsheetSampleProps = {
    isLoading?: boolean;
    headings: string[];
    rows: string[][];
}