import React from 'react';
import { View, ViewProps, StyleProp, ViewStyle } from 'react-native';
export type PaperVariant = 'elevation' | 'outlined';
export type PaperElevation = 0 | 1 | 2 | 3 | 4 | 6 | 8 | 12 | 16 | 24;
export interface PaperProps extends ViewProps {
    elevation?: PaperElevation;
    square?: boolean;
    variant?: PaperVariant;
    style?: StyleProp<ViewStyle>;
}
declare const Paper: React.ForwardRefExoticComponent<PaperProps & React.RefAttributes<View>>;
export default Paper;
//# sourceMappingURL=Paper.d.ts.map