import type { TokensType } from '../theme/interface';
export declare const varCreator: (TOKENS: TokensType) => {
    empty_image_width: number;
    empty_image_height: number;
    empty_icon_margin_bottom: number;
    empty_text_color: string;
    empty_text_font_size: number;
    empty_text_line_height: number;
};
declare type ComponentVars = ReturnType<typeof varCreator>;
export declare const styleCreator: (cv: ComponentVars) => {
    empty: {
        justifyContent: "center";
        alignItems: "center";
    };
    emptyFull: {
        flex: number;
    };
    icon: {
        alignSelf: "center";
        marginBottom: number;
    };
    text: {
        color: string;
        fontSize: number;
        lineHeight: number;
    };
};
export {};
