import { FC } from 'react';
import { MRT_TableInstance } from '..';
import type { Theme } from '@mui/material/styles';
export declare const commonToolbarStyles: ({ theme }: {
    theme: Theme;
}) => {
    alignItems: string;
    backgroundColor: string;
    backgroundImage: string;
    display: string;
    flexWrap: string;
    minHeight: string;
    overflow: string;
    p: string;
    transition: string;
    zIndex: number;
};
interface Props {
    table: MRT_TableInstance;
}
export declare const MRT_TopToolbar: FC<Props>;
export {};
