export namespace defaultSymbol { export { Symbol as component }; export { symbolStyles as styles }; export { symbolAttributes as attributes }; } export namespace blenderSymbol { export { BlenderSymbol as component }; export { blenderStyles as styles }; export { blenderAttributes as attributes }; } declare function Symbol({ symbol: _, state: __, ...rest }: { [x: string]: any; symbol: any; state: any; }): JSX.Element; declare function symbolStyles(_: any, { symbol, width, height, viewBoxWidth, viewBoxHeight }: { symbol: any; width: any; height: any; viewBoxWidth: any; viewBoxHeight: any; }): import("facepaint").DynamicStyle; declare function symbolAttributes(): null; declare function BlenderSymbol({ className, ...rest }: { [x: string]: any; className: any; }): JSX.Element; declare function blenderStyles(_: any, { symbol, width, height, viewBoxWidth, viewBoxHeight }: { symbol: any; width: any; height: any; viewBoxWidth: any; viewBoxHeight: any; }): any; declare function blenderAttributes(_: any, { symbol }: { symbol: any; }): { className: string; }; export {};