///
declare type LiteralUnion = T | (U & {});
export interface InterfaceHiddenProps {
/**
* The from prop takes breakpoint from which the wrapped component is hidden.
*/
from?: LiteralUnion<'base' | 'sm' | 'md' | 'lg' | 'xl'>;
/**
* The till prop takes breakpoint till which the wrapped component is hidden.
*/
till?: LiteralUnion<'base' | 'sm' | 'md' | 'lg' | 'xl'>;
/**
* The only prop takes array of breakpoints on which the wrapped component is hidden.
* It hides the component starting from that breakpoint to the next breakpoint.
*/
only?: LiteralUnion<'base' | 'sm' | 'md' | 'lg' | 'xl'> | Array>;
/**
* The colormode takes the mode on which the wrapped component must be hidden.
*/
colorMode?: 'light' | 'dark';
/**
* The platform takes the platform as string or array for the multiple on which the wrapped component must be hidden.
*/
platform?: LiteralUnion<'ios' | 'android' | 'web'> | Array>;
/**
*
*/
children: React.ReactElement | null;
/**
*
*/
isSSR?: boolean;
}
export declare type IHiddenProps = InterfaceHiddenProps;
export {};