///
import type { Props as PropsOrbit } from "@kiwicom/orbit-components/lib/Button";
import type { Values } from "../../services/intl/translate";
declare type Props = Omit & {
t: string;
defaultMessage?: string;
values?: Values;
html?: boolean;
transform?: (value: string) => string;
};
declare const Button: ({ t, defaultMessage, values, html, transform, ...orbit }: Props) => JSX.Element;
export default Button;