export declare enum ViewBoxSize { Medium = "0 0 512 512", Small = "0 0 200 200" } interface IllustrationConfig { size: number; large?: T; medium?: T; small?: T; } export declare const getIllustration: ({ size, large, medium, small }: IllustrationConfig) => T; export {};