import type { ButtonBaseProps } from "@material-ui/core/ButtonBase";
import React from "react";
import { UserInteraction } from "../../types/utils";
export declare type LayoutButtonProps<T extends React.ElementType = "button"> = ButtonBaseProps<T> & {
    state?: UserInteraction;
};
export declare const LayoutButton: React.FC<LayoutButtonProps>;
