import type { TableFooter } from './types';
import type { TableColumnCtx } from '../table-column/defaults';
declare function useStyle(props: TableFooter): {
    columns: any;
    getCellClass: (columns: TableColumnCtx[], cellIndex: number) => string[];
    getCellStyle: (column: TableColumnCtx, cellIndex: number) => {
        left?: string;
        right?: string;
    };
};
export default useStyle;
