export declare type ScreensType<T = string> = {
    mobile?: T;
    tablet?: T;
    desktop?: T;
};
