import type { ResponsiveValue } from '@shopify/restyle'; import type { Theme } from '../../theme/theme'; export interface ILoadingContainer { show?: boolean; full?: boolean; count?: number; colorDot?: ResponsiveValue; pt?: ResponsiveValue; pb?: ResponsiveValue; size?: 'normal' | 'small'; } export declare const LoadingContainer: ({ colorDot, show, count, pt, pb, size, }: ILoadingContainer) => JSX.Element | null;