import React from 'react'; interface ViewProps extends Omit, 'title'> { /** * Required property used in history. Useful for providing navigational button labels to a different view. **Example** "Back to Settings" **/ title: string; /** * Internally used and passed in programmatically. Any value provided will be overwritten. **/ index?: number; } declare const View: { ({ className, title, index, ...rest }: ViewProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; }; export { View }; export type { ViewProps };