import type { Theme } from "../../../defaultTheme";
interface Args {
    readonly state: string;
    readonly disabled?: boolean;
    readonly theme: Theme;
    readonly selected?: boolean;
}
declare const getButtonBoxShadow: ({ state, disabled, theme, selected }: Args) => string | null;
export default getButtonBoxShadow;
