export interface ButtonSortProps {
    /** The label text of the sort button */
    text: string;
    /** An array of sort button objects */
    direction?: "" | "asc" | "dsc";
}
declare const ButtonSort: (buttonSort: ButtonSortProps) => any;
export default ButtonSort;
