import { type ElementType } from 'react'; import { type PolymorphicComponentProps } from '@quotalab/headless-hooks'; import { type PaperRootVariants } from './Paper.css'; declare const DEFAULT_ELEMENT = "div"; export type PaperOwnProps = PaperRootVariants; export type PaperProps = PolymorphicComponentProps; type PaperComponent = (props: PaperProps) => React.ReactNode; export declare const Paper: PaperComponent; export {}; //# sourceMappingURL=Paper.d.ts.map