import React from 'react'; export type GridHeaderCellDefault = { /** * Id of the column */ columnId: string; /** * Does the column contain left aligned cells * or right aligned cells */ align?: 'left' | 'right'; /** * Text content of the header cell */ label: string; /** * Accessible tab index. You should generally pass through the tabIndex * provided to the Renderer component. */ tabIndex: number; /** * Does this column support sorting */ sortable?: boolean; /** * Is this column sorted and if so, which direction is it sorted. */ sortDirection?: 'asc' | 'desc'; /** * If this column is part of a multi-column sort, which position * is this column in the combination. */ sortNumber?: number; }; /** * This is the default header cell renderer for the pv-table. */ declare const GridHeaderCellDefaultImpl: ({ align, label, tabIndex, sortable, sortDirection, sortNumber, }: GridHeaderCellDefault) => React.JSX.Element; export declare const GridHeaderCellDefault: typeof GridHeaderCellDefaultImpl; export {}; //# sourceMappingURL=header-cell-default.d.ts.map