import type { TokensType } from '../theme/interface';
export declare const varCreator: (TOKENS: TokensType) => {
    search_background_color: string;
    search_padding_horizontal: number;
    search_padding_vertical: number;
    search_gap: number;
    search_back_icon_color: string;
    search_text_input_background_color: string;
};
declare type ComponentVars = ReturnType<typeof varCreator>;
export declare const styleCreator: (cv: ComponentVars) => {
    search: {
        backgroundColor: string;
        paddingHorizontal: number;
        paddingVertical: number;
        flexDirection: "row";
        alignItems: "center";
    };
    search_back: {
        paddingLeft: number;
    };
    text_input: {
        marginLeft: number;
    };
    text_input_group: {
        flex: number;
        backgroundColor: string;
        borderRadius: number;
        marginRight: number;
    };
    icon_back: {
        alignItems: "center";
        justifyContent: "center";
        marginRight: number;
    };
};
export {};
