import Button from './Button';
declare const ExportLink: ((props: {
href?: string | undefined;
target?: string | undefined;
} & import("react").HTMLAttributes<HTMLAnchorElement>) => JSX.Element) & {
Button: typeof Button;
};
export default ExportLink;