export type CloseButtonProps = CloseButtonVariants & AnchorButtonAttributes & {
    onclick?: (ev: MouseEvent) => void;
    name?: string;
    ariaLabel?: string;
    class?: string;
    svgClass?: string;
};
import type { AnchorButtonAttributes } from '../../types/index.js';
import type { CloseButtonVariants } from './theme.js';
declare const CloseButton: import("svelte").Component<CloseButtonProps, {}, "">;
type CloseButton = ReturnType<typeof CloseButton>;
export default CloseButton;
