import hoistNonReactStatics from "hoist-non-react-statics"; import * as React from "react"; interface SLAPreferencesQueuePageStateProps { queueName: string | null; hasFetched: boolean; error: null | Error; } interface SLAPreferencesQueuePageOwnProps { queueSid: string; } type SLAPreferencesQueuePageProps = SLAPreferencesQueuePageStateProps & SLAPreferencesQueuePageOwnProps; export declare class SLAPreferencesQueuePageImpl extends React.PureComponent { static get path(): string; constructor(props: SLAPreferencesQueuePageProps); onCancel: () => Promise; render(): JSX.Element; } export declare const SLAPreferencesQueuePage: React.NamedExoticComponent & SLAPreferencesQueuePageStateProps & SLAPreferencesQueuePageOwnProps, "error" | "queueName" | "hasFetched"> & SLAPreferencesQueuePageOwnProps> & hoistNonReactStatics.NonReactStatics & { WrappedComponent: typeof SLAPreferencesQueuePageImpl; }; export {};