import * as React from 'react'; import { CSS } from '../theme/stitches.config'; interface Props { width?: number; height?: number; size?: number; fill?: string; } declare const defaultProps: { width: number; height: number; }; declare type NativeAttrs = Omit, keyof Props>; export declare type CategoryProps = Props & typeof defaultProps & NativeAttrs & { css?: CSS; }; declare const _default: React.ComponentType & Omit>; export default _default;