import * as React from 'react'; import { SecuritySchemeModel } from '../../services'; interface SecuritySchemaProps { RequiredScopes?: JSX.Element; scheme: SecuritySchemeModel; } export declare function SecurityDetails(props: SecuritySchemaProps): React.JSX.Element; export {};