interface Props {
    infoType?: 'important' | 'none';
    iconText?: string;
    text: string;
}
declare const Notice: import("svelte").Component<Props, {}, "">;
type Notice = ReturnType<typeof Notice>;
export default Notice;
