import { TProfile, TItems, SIZES } from '../types';
interface IProfileInput {
    items: TItems[];
    position?: number;
    width?: SIZES;
    title?: string;
}
export declare const createProfile: ({ items, width, title, position, }: IProfileInput) => TProfile;
export {};
