import type { Interpolation } from "styled-components";
import type { Type, ButtonStates } from "../types";
import type { Theme } from "../../defaultTheme";
interface BoxShadowProps {
    state: ButtonStates;
    disabled: boolean;
    theme: Theme;
    type: Type;
}
declare const getButtonBoxShadow: ({ state, disabled, theme, type, }: BoxShadowProps) => Interpolation<string> | null;
export default getButtonBoxShadow;
