export interface FulfillmentMethod {
    id: string;
    title: string;
    subtitle: string;
    iconClass: string;
}
/**
 * @name SallaFulfillmentMethods
 * @description Displays product fulfillment options (pickup and delivery) as two side-by-side cards
 * @tag salla-fulfillment-methods
 */
export declare class SallaFulfillmentMethods {
    methods: FulfillmentMethod[];
    shouldRender: boolean;
    componentDidLoad(): Promise<void>;
    private setLabels;
    render(): any;
}
