import React from 'react'; import { DefaultProps, MantineNumberSize, MantineShadow } from '@asuikit/styles'; import { PaperStylesParams } from './Paper.styles'; export interface PaperProps extends DefaultProps { variant?: string; /** Predefined box-shadow from theme.shadows (xs, sm, md, lg, xl) or any valid css box-shadow property */ shadow?: MantineShadow; /** Key of theme.radius or any valid CSS value to set border-radius, theme.defaultRadius by default */ radius?: MantineNumberSize; /** Adds border styles */ withBorder?: boolean; /** Paper children */ children?: React.ReactNode; } export declare const _Paper: React.ForwardRefExoticComponent>; export declare const Paper: ((props: import("@asuikit/utils").PolymorphicComponentProps) => React.ReactElement>) & Omit, "component" | keyof PaperProps> & { ref?: any; }) | (PaperProps & { component: React.ElementType; })>, never> & Record; //# sourceMappingURL=Paper.d.ts.map