/**
 * Copyright (c) ACT, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @prettier
 */
import { PopperProps } from '@mui/material';
import { CSSProperties, FC } from 'react';
export interface TablePaginationActionsProps {
    count: number;
    disabled?: boolean;
    noun?: string;
    onPageChange: (event: any, page: number) => void;
    page: number;
    PopperProps?: Partial<PopperProps>;
    rowsPerPage: number;
    style?: CSSProperties;
    tooltipPlacement?: 'bottom' | 'left' | 'right' | 'top' | 'bottom-end' | 'bottom-start' | 'left-end' | 'left-start' | 'right-end' | 'right-start' | 'top-end' | 'top-start';
    variant?: 'inverted';
}
export declare const TablePaginationActions: FC<TablePaginationActionsProps>;
export default TablePaginationActions;
//# sourceMappingURL=index.d.ts.map