import React from 'react'; import { ColVariantsProps } from './col.styles'; import { CSS } from '../theme/stitches.config'; interface Props { span?: number; offset?: number; css?: CSS; as?: keyof JSX.IntrinsicElements; } declare const defaultProps: { span: number; offset: number; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ColProps = Props & typeof defaultProps & ColVariantsProps & NativeAttrs; declare const _default: React.ComponentType & Omit>; export default _default;