export namespace defaultPictogram { export { Pictogram as component }; export { pictogramStyles as styles }; export { pictogramAttributes as attributes }; } declare function Pictogram({ state: _, ...rest }: { [x: string]: any; state: any; }): JSX.Element; declare function pictogramStyles(_: any, { width, height, viewBoxWidth, viewBoxHeight }: { width: any; height: any; viewBoxWidth: any; viewBoxHeight: any; }): import("facepaint").DynamicStyle; declare function pictogramAttributes(): null; export {};