import type { Params as CommonParams, Output as CommonOutput } from "../../primitives/ButtonPrimitive/common/getCommonProps";
interface Props extends CommonParams {
    readonly compact?: boolean;
}
interface Output extends CommonOutput {
    padding: string;
}
declare const getButtonLinkCommonProps: (props: Props) => Output;
export default getButtonLinkCommonProps;
