import type { IconifyIconAttributes } from './index.d.ts';
type Props = Omit<IconifyIconAttributes, 'icon' | 'aria-label'> & {
    icon?: string;
    label?: string | null;
};
declare const IconTest: import("svelte").Component<Props, {}, "">;
type IconTest = ReturnType<typeof IconTest>;
export default IconTest;
