import { View, ViewProps } from "react-native"; import React from "react"; import { Elevation } from "../../styling"; export type PaperProps = { /** * The elevation of the paper component. * Each elevation comes with its own visual appearance. */ elevation: Elevation; }; export declare const Paper: React.ForwardRefExoticComponent>;