import React from 'react'; export type GridFooterCellDefault = { /** * Id of the column */ columnId: string; /** * Does the column contain left aligned cells * or right aligned cells */ align?: 'left' | 'right'; /** * Text content of the footer cell */ label: string | number; }; /** * This is the default header cell renderer for the pv-table. */ declare const GridFooterCellDefaultImpl: ({ align, label }: GridFooterCellDefault) => React.JSX.Element; export declare const GridFooterCellDefault: typeof GridFooterCellDefaultImpl; export {}; //# sourceMappingURL=footer-cell-default.d.ts.map