export type HeaderDrawerProperties = {
    /**
     * The label for the back button.
     * If not provided, the back button will not be displayed.
     * If provided to an empty string, the back button will be displayed as an icon button.
     */
    backArrow?: string;
    /**
     * Whether the drawer can be closed.
     * If true, a close button will be displayed.
     */
    closable?: boolean;
};
