import React from 'react'; import { ExternalStyles, Theme } from '../../styles'; import { OuterShadows } from '../../styles/theme/createShadows'; import { Omit } from '../../util'; export interface PaperProps extends Omit, 'style'> { elevation?: keyof OuterShadows; style?: ExternalStyles; } export declare function Paper(props: PaperProps): JSX.Element; export declare const createStyles: (theme: Theme, { elevation }: PaperProps) => { paper: { border: string; borderRadius: number; boxShadow: string; }; };