export default SiNormalizedotcss;
type SiNormalizedotcss = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<$$ComponentProps>): void;
};
declare const SiNormalizedotcss: import("svelte").Component<{
    color?: string;
    size?: number;
    title?: string;
} & Record<string, any>, {}, "">;
type $$ComponentProps = {
    color?: string;
    size?: number;
    title?: string;
} & Record<string, any>;
