interface Props {
    color?: string;
    title?: string;
    [key: string]: unknown;
}
declare const XIcon: import("svelte").Component<Props, {}, "">;
type XIcon = ReturnType<typeof XIcon>;
export default XIcon;
