import { EnforcedLayoutTypeEnum } from './enums'; import { ChangeEnforcedLayout } from './types'; export declare const layout: { /** * @deprecated Use {@link layout.setEnforcedLayout} instead * Changes the enforced layout * * @param layoutType is one of the options described by the enum */ changeEnforcedLayout: ChangeEnforcedLayout; /** * Sets the enforced layout * * @param layoutType is one of the options described by the enum */ setEnforcedLayout: (layoutType: EnforcedLayoutTypeEnum) => void; };