import React from "react";
type Props = {
    id?: string;
    externalClick?: any;
    menuPortalTarget?: any;
    value: any;
    onChange: (props: any) => void;
    filterKey?: string;
    customRender?: any;
    filterHeaderKey?: string;
    placeholder?: string;
    invalid?: any;
    menuHeight?: number;
    menuWidth?: number;
    classNamePrefix?: string;
    cellFocus?: boolean;
    t?: any;
    column: any;
    fieldKey?: any;
    rowData: any;
    indexRow: any;
    template?: any;
    onKeyDown?: (event: any) => void;
};
export declare const SelectStyle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
export declare const EditForm: (props: Props) => JSX.Element;
export {};
