import { View } from '@difizen/mana-app';
import type { ReactNode } from 'react';
export interface NavigatablePage extends View {
    goBack?: () => void;
    pageTitle: () => ReactNode;
    hideBrand?: boolean;
}
export declare const NavigatablePageType: {
    is(data: View): data is NavigatablePage;
};
//# sourceMappingURL=protocol.d.ts.map