import * as React from 'react'; import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * The surface revealed behind `Drawer.Indent` as the app shrinks back. * Renders a ``. * * Render it before the indent and give it a background — it is what shows in the * gap the scaled-down app leaves at the edges of the screen. It publishes the * same state, so it can fade in with the indent. */ export declare function DrawerIndentBackground(componentProps: DrawerIndentBackground.Props): React.ReactElement>; export interface DrawerIndentBackgroundState { /** * Whether any drawer under the provider is open. */ active: boolean; /** * How far the frontmost drawer has been swiped towards dismissal, `0` to `1`. */ swipeProgress: number; } export interface DrawerIndentBackgroundProps extends ZestUIComponentProps { } export declare namespace DrawerIndentBackground { type State = DrawerIndentBackgroundState; type Props = DrawerIndentBackgroundProps; } //# sourceMappingURL=DrawerIndentBackground.d.ts.map